CentOS 7

SELinuxの状態を調べる:sestatus

setenforce 0 でモードを enforcing から permissive に変えられる。

本当にSELinuxを切るには /etc/selinux/config で SELINUX=disabled にして shutdown -r now

サービスを開始・終了する例:

systemctl start mariadb.service
systemctl restart httpd.service
systemctl restart sshd.service
# systemctl stop iptables.service
systemctl stop firewalld.service

起動時に自動起動するかしないかの例(/etc/systemd/system 以下にシンボリックリンクが作られる)

systemctl enable mariadb.service
systemctl enable httpd.service
# systemctl disable iptables.service
systemctl disable firewalld.service

Last-modified: 2015-06-04 (木) 14:20:47 (2474d)